home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / dasv10_.arj / SWAPR.CPP < prev    next >
Encoding:
Text File  |  1993-08-13  |  118 b   |  8 lines

  1. // util.lib function swap_r()
  2.  
  3. void swap_r(int& num1,int& num2)
  4. {
  5.     int temp=num1;
  6.     num1 = num2;
  7.     num2 = temp;
  8. }